Get Multiple Entries Endpoint
Overview
Retrieves multiple entries from a specific data source within an app. This endpoint supports advanced filtering, sorting, pagination, and partial field selection.
Endpoint
POST https://api.myboardtoday.com/app/:app_id/source/:source_id/entries
Path Parameters
Parameter | Type | Required | Description |
---|---|---|---|
app_id | UUID | Yes | Unique identifier of the app. |
source_id | UUID | Yes | Unique identifier of the source. |
Headers
Header | Required | Description |
---|---|---|
x-api-key | Yes | API key used for authentication. |
Query Parameters
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
order_params | Object | No | {} | Key-value pairs where the key is a field name and the value is the sort order ("asc" or "desc" ). |
filter_params | Array of Arrays | No | [] | Array of AND/OR filter conditions. Each inner array represents AND conditions; outer array represents OR conditions. |
page_size | Integer | No | 10 | Maximum number of entries per page. |
page_token | String | No | "" | Token used for paginated requests. Typically returned in previous responses as next_token . |
limit | Integer | No | null | Maximum number of entries to retrieve. |
fields | Array of Strings | No | [] | List of specific fields to include in the response. |
use_named | Boolean | No | false | If true , use named fields in the response. |
mode | String | No | "entries_only" | Controls the structure of the returned data. Supported values: entries_only , schema_entries , key_fields , sample , object_schema_fields , schema_only . |
ref | Object | No | {} | Configuration for fetching reference fields. Keys should be entry field names; values should be corresponding query parameter objects. |
filter_params
Example
[
[
{ "field": "name", "op": "=", "val": "James" },
{ "field": "age", "op": ">", "val": 30 }
],
[{ "field": "name", "op": "=", "val": "Bond" }]
]
This example will return entries that match either:
name = "James"
ANDage > 30
, orname = "Bond"
Supported Filter Operators
=
>
<
>=
<=
not
in
not_in
contains
not_contains
starts_with
between
exists
arrayContainsField
!For optimal performance, avoid overly complex filter combinations on large datasets.
Report Bugs, Request New Features, and Win $50 Every Month
We value your precious feedback. Please contact us when you find a bug or would like to request a new feature. (In the main panel, click on the bob logo on the top left corner, then in the Dropdown menu click on “contact for bugs or new features”). Every month we will select an “opinion leader” and reward him/her with $50 in cash.